home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / os-probes / init / 10filesystems
Text File  |  2009-01-09  |  1KB  |  38 lines

  1. #!/bin/sh
  2. # Make sure filesystems are available.
  3. set +e    # ignore errors from modprobe
  4.  
  5. FILESYSTEMS='ext2 ext3 ext4 reiserfs xfs jfs msdos vfat ntfs minix hfs hfsplus qnx4 ufs'
  6. # The Ubuntu kernel udebs put a number of filesystem modules in
  7. # fs-{core,secondary}-modules. It's fairly cheap to check for these too.
  8. FILESYSTEMS="$FILESYSTEMS fs-core fs-secondary"
  9.  
  10. if [ ! -e /var/lib/os-prober/modules ]; then
  11.     # Check for anna-install to make it easier to use os-prober outside
  12.     # d-i.
  13.     if type anna-install >/dev/null 2>&1 && [ -d /lib/debian-installer ]; then
  14.         for fs in $FILESYSTEMS; do
  15.             ANNA_QUIET=1 DEBIAN_FRONTEND=none \
  16.             log-output -t os-prober \
  17.                 anna-install "$fs-modules" || true
  18.         done
  19.         depmod -a >/dev/null 2>&1 || true
  20.     fi
  21.  
  22.     for fs in $FILESYSTEMS; do
  23.         case $fs in
  24.             fs-*)
  25.                 ;;
  26.             *)
  27.                 modprobe $fs 2>/dev/null | logger -t os-prober
  28.                 ;;
  29.         esac
  30.     done
  31.  
  32.     # We only want to keep this state inside d-i, so this is as good a
  33.     # check as any.
  34.     if type anna-install >/dev/null 2>&1 && [ -d /lib/debian-installer ]; then
  35.         touch /var/lib/os-prober/modules
  36.     fi
  37. fi
  38.